\(\int \frac {x}{\sqrt {1-a^2 x^2} \text {arccosh}(a x)} \, dx\) [295]

   Optimal result
   Rubi [A] (verified)
   Mathematica [A] (verified)
   Maple [B] (verified)
   Fricas [F]
   Sympy [F]
   Maxima [F]
   Giac [F]
   Mupad [F(-1)]

Optimal result

Integrand size = 22, antiderivative size = 28 \[ \int \frac {x}{\sqrt {1-a^2 x^2} \text {arccosh}(a x)} \, dx=\frac {\sqrt {-1+a x} \text {Chi}(\text {arccosh}(a x))}{a^2 \sqrt {1-a x}} \]

[Out]

Chi(arccosh(a*x))*(a*x-1)^(1/2)/a^2/(-a*x+1)^(1/2)

Rubi [A] (verified)

Time = 0.06 (sec) , antiderivative size = 28, normalized size of antiderivative = 1.00, number of steps used = 2, number of rules used = 2, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.091, Rules used = {5952, 3382} \[ \int \frac {x}{\sqrt {1-a^2 x^2} \text {arccosh}(a x)} \, dx=\frac {\sqrt {a x-1} \text {Chi}(\text {arccosh}(a x))}{a^2 \sqrt {1-a x}} \]

[In]

Int[x/(Sqrt[1 - a^2*x^2]*ArcCosh[a*x]),x]

[Out]

(Sqrt[-1 + a*x]*CoshIntegral[ArcCosh[a*x]])/(a^2*Sqrt[1 - a*x])

Rule 3382

Int[sin[(e_.) + (Complex[0, fz_])*(f_.)*(x_)]/((c_.) + (d_.)*(x_)), x_Symbol] :> Simp[CoshIntegral[c*f*(fz/d)
+ f*fz*x]/d, x] /; FreeQ[{c, d, e, f, fz}, x] && EqQ[d*(e - Pi/2) - c*f*fz*I, 0]

Rule 5952

Int[((a_.) + ArcCosh[(c_.)*(x_)]*(b_.))^(n_.)*(x_)^(m_.)*((d_) + (e_.)*(x_)^2)^(p_.), x_Symbol] :> Dist[(1/(b*
c^(m + 1)))*Simp[(d + e*x^2)^p/((1 + c*x)^p*(-1 + c*x)^p)], Subst[Int[x^n*Cosh[-a/b + x/b]^m*Sinh[-a/b + x/b]^
(2*p + 1), x], x, a + b*ArcCosh[c*x]], x] /; FreeQ[{a, b, c, d, e, n}, x] && EqQ[c^2*d + e, 0] && IGtQ[2*p + 2
, 0] && IGtQ[m, 0]

Rubi steps \begin{align*} \text {integral}& = \frac {\sqrt {-1+a x} \text {Subst}\left (\int \frac {\cosh (x)}{x} \, dx,x,\text {arccosh}(a x)\right )}{a^2 \sqrt {1-a x}} \\ & = \frac {\sqrt {-1+a x} \text {Chi}(\text {arccosh}(a x))}{a^2 \sqrt {1-a x}} \\ \end{align*}

Mathematica [A] (verified)

Time = 0.07 (sec) , antiderivative size = 50, normalized size of antiderivative = 1.79 \[ \int \frac {x}{\sqrt {1-a^2 x^2} \text {arccosh}(a x)} \, dx=-\frac {\sqrt {-((-1+a x) (1+a x))} \text {Chi}(\text {arccosh}(a x))}{a^2 \sqrt {\frac {-1+a x}{1+a x}} (1+a x)} \]

[In]

Integrate[x/(Sqrt[1 - a^2*x^2]*ArcCosh[a*x]),x]

[Out]

-((Sqrt[-((-1 + a*x)*(1 + a*x))]*CoshIntegral[ArcCosh[a*x]])/(a^2*Sqrt[(-1 + a*x)/(1 + a*x)]*(1 + a*x)))

Maple [B] (verified)

Leaf count of result is larger than twice the leaf count of optimal. \(57\) vs. \(2(24)=48\).

Time = 0.78 (sec) , antiderivative size = 58, normalized size of antiderivative = 2.07

method result size
default \(\frac {\sqrt {-a^{2} x^{2}+1}\, \sqrt {a x -1}\, \sqrt {a x +1}\, \left (\operatorname {Ei}_{1}\left (\operatorname {arccosh}\left (a x \right )\right )+\operatorname {Ei}_{1}\left (-\operatorname {arccosh}\left (a x \right )\right )\right )}{2 a^{2} \left (a^{2} x^{2}-1\right )}\) \(58\)

[In]

int(x/arccosh(a*x)/(-a^2*x^2+1)^(1/2),x,method=_RETURNVERBOSE)

[Out]

1/2*(-a^2*x^2+1)^(1/2)*(a*x-1)^(1/2)*(a*x+1)^(1/2)*(Ei(1,arccosh(a*x))+Ei(1,-arccosh(a*x)))/a^2/(a^2*x^2-1)

Fricas [F]

\[ \int \frac {x}{\sqrt {1-a^2 x^2} \text {arccosh}(a x)} \, dx=\int { \frac {x}{\sqrt {-a^{2} x^{2} + 1} \operatorname {arcosh}\left (a x\right )} \,d x } \]

[In]

integrate(x/arccosh(a*x)/(-a^2*x^2+1)^(1/2),x, algorithm="fricas")

[Out]

integral(-sqrt(-a^2*x^2 + 1)*x/((a^2*x^2 - 1)*arccosh(a*x)), x)

Sympy [F]

\[ \int \frac {x}{\sqrt {1-a^2 x^2} \text {arccosh}(a x)} \, dx=\int \frac {x}{\sqrt {- \left (a x - 1\right ) \left (a x + 1\right )} \operatorname {acosh}{\left (a x \right )}}\, dx \]

[In]

integrate(x/acosh(a*x)/(-a**2*x**2+1)**(1/2),x)

[Out]

Integral(x/(sqrt(-(a*x - 1)*(a*x + 1))*acosh(a*x)), x)

Maxima [F]

\[ \int \frac {x}{\sqrt {1-a^2 x^2} \text {arccosh}(a x)} \, dx=\int { \frac {x}{\sqrt {-a^{2} x^{2} + 1} \operatorname {arcosh}\left (a x\right )} \,d x } \]

[In]

integrate(x/arccosh(a*x)/(-a^2*x^2+1)^(1/2),x, algorithm="maxima")

[Out]

integrate(x/(sqrt(-a^2*x^2 + 1)*arccosh(a*x)), x)

Giac [F]

\[ \int \frac {x}{\sqrt {1-a^2 x^2} \text {arccosh}(a x)} \, dx=\int { \frac {x}{\sqrt {-a^{2} x^{2} + 1} \operatorname {arcosh}\left (a x\right )} \,d x } \]

[In]

integrate(x/arccosh(a*x)/(-a^2*x^2+1)^(1/2),x, algorithm="giac")

[Out]

integrate(x/(sqrt(-a^2*x^2 + 1)*arccosh(a*x)), x)

Mupad [F(-1)]

Timed out. \[ \int \frac {x}{\sqrt {1-a^2 x^2} \text {arccosh}(a x)} \, dx=\int \frac {x}{\mathrm {acosh}\left (a\,x\right )\,\sqrt {1-a^2\,x^2}} \,d x \]

[In]

int(x/(acosh(a*x)*(1 - a^2*x^2)^(1/2)),x)

[Out]

int(x/(acosh(a*x)*(1 - a^2*x^2)^(1/2)), x)